-
Notifications
You must be signed in to change notification settings - Fork 56
Bundle config reference #118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This will also fix #113 |
👍 |
client: 'httplug.clients.my_guzzle5' | ||
async_client: 'auto' | ||
|
||
The debug info for normal HTTP clients are enabled by default but not for async clients. You can turn all debug info off for auto discovered clients by setting the value to ``false``. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets try to make this more readable:
For normal clients, the auto discovery debug info is enabled by default. For async clients, debug is not enabled by default to avoid errors when using the bundle with a client that can not do async. To get debug information for async clients, set discovery.async_client
to 'auto'
or an explicit client.
You can turn off all interaction of the bundle with auto discovery by setting the value of discovery.client
to false
.
👍 |
Thank you for the reviews. I've updated my PR |
toolbar: | ||
captured_body_length: 1000 # Capture the first 1000 chars of the HTTP body | ||
|
||
The toolbar is automatically turned of when ``kernel.debug = false``. You can also disable the toolbar by configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/of/off/
This will fix #107 and #114
TODO